home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / dev / gcc / ppc-mos-gcc.lha / info / gcc.info-5 (.txt) < prev    next >
GNU Info File  |  2002-06-18  |  48KB  |  914 lines

  1. This is Info file gcc.info, produced by Makeinfo version 1.68 from the
  2. input file ./gcc.texi.
  3. INFO-DIR-SECTION Programming
  4. START-INFO-DIR-ENTRY
  5. * gcc: (gcc).                  The GNU Compiler Collection.
  6. END-INFO-DIR-ENTRY
  7.    This file documents the use and the internals of the GNU compiler.
  8.    Published by the Free Software Foundation 59 Temple Place - Suite 330
  9. Boston, MA 02111-1307 USA
  10.    Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
  11. 1999, 2000 Free Software Foundation, Inc.
  12.    Permission is granted to make and distribute verbatim copies of this
  13. manual provided the copyright notice and this permission notice are
  14. preserved on all copies.
  15.    Permission is granted to copy and distribute modified versions of
  16. this manual under the conditions for verbatim copying, provided also
  17. that the sections entitled "GNU General Public License" and "Funding
  18. for Free Software" are included exactly as in the original, and
  19. provided that the entire resulting derived work is distributed under
  20. the terms of a permission notice identical to this one.
  21.    Permission is granted to copy and distribute translations of this
  22. manual into another language, under the above conditions for modified
  23. versions, except that the sections entitled "GNU General Public
  24. License" and "Funding for Free Software", and this permission notice,
  25. may be included in translations approved by the Free Software Foundation
  26. instead of in the original English.
  27. File: gcc.info,  Node: M88K Options,  Next: RS/6000 and PowerPC Options,  Prev: M32R/D Options,  Up: Submodel Options
  28. M88K Options
  29. ------------
  30.    These `-m' options are defined for Motorola 88k architectures:
  31. `-m88000'
  32.      Generate code that works well on both the m88100 and the m88110.
  33. `-m88100'
  34.      Generate code that works best for the m88100, but that also runs
  35.      on the m88110.
  36. `-m88110'
  37.      Generate code that works best for the m88110, and may not run on
  38.      the m88100.
  39. `-mbig-pic'
  40.      Obsolete option to be removed from the next revision.  Use `-fPIC'.
  41. `-midentify-revision'
  42.      Include an `ident' directive in the assembler output recording the
  43.      source file name, compiler name and version, timestamp, and
  44.      compilation flags used.
  45. `-mno-underscores'
  46.      In assembler output, emit symbol names without adding an underscore
  47.      character at the beginning of each name.  The default is to use an
  48.      underscore as prefix on each name.
  49. `-mocs-debug-info'
  50. `-mno-ocs-debug-info'
  51.      Include (or omit) additional debugging information (about
  52.      registers used in each stack frame) as specified in the 88open
  53.      Object Compatibility Standard, "OCS".  This extra information
  54.      allows debugging of code that has had the frame pointer
  55.      eliminated.  The default for DG/UX, SVr4, and Delta 88 SVr3.2 is
  56.      to include this information; other 88k configurations omit this
  57.      information by default.
  58. `-mocs-frame-position'
  59.      When emitting COFF debugging information for automatic variables
  60.      and parameters stored on the stack, use the offset from the
  61.      canonical frame address, which is the stack pointer (register 31)
  62.      on entry to the function.  The DG/UX, SVr4, Delta88 SVr3.2, and
  63.      BCS configurations use `-mocs-frame-position'; other 88k
  64.      configurations have the default `-mno-ocs-frame-position'.
  65. `-mno-ocs-frame-position'
  66.      When emitting COFF debugging information for automatic variables
  67.      and parameters stored on the stack, use the offset from the frame
  68.      pointer register (register 30).  When this option is in effect,
  69.      the frame pointer is not eliminated when debugging information is
  70.      selected by the -g switch.
  71. `-moptimize-arg-area'
  72. `-mno-optimize-arg-area'
  73.      Control how function arguments are stored in stack frames.
  74.      `-moptimize-arg-area' saves space by optimizing them, but this
  75.      conflicts with the 88open specifications.  The opposite
  76.      alternative, `-mno-optimize-arg-area', agrees with 88open
  77.      standards.  By default GCC does not optimize the argument area.
  78. `-mshort-data-NUM'
  79.      Generate smaller data references by making them relative to `r0',
  80.      which allows loading a value using a single instruction (rather
  81.      than the usual two).  You control which data references are
  82.      affected by specifying NUM with this option.  For example, if you
  83.      specify `-mshort-data-512', then the data references affected are
  84.      those involving displacements of less than 512 bytes.
  85.      `-mshort-data-NUM' is not effective for NUM greater than 64k.
  86. `-mserialize-volatile'
  87. `-mno-serialize-volatile'
  88.      Do, or don't, generate code to guarantee sequential consistency of
  89.      volatile memory references.  By default, consistency is guaranteed.
  90.      The order of memory references made by the MC88110 processor does
  91.      not always match the order of the instructions requesting those
  92.      references.  In particular, a load instruction may execute before
  93.      a preceding store instruction.  Such reordering violates
  94.      sequential consistency of volatile memory references, when there
  95.      are multiple processors.   When consistency must be guaranteed,
  96.      GNU C generates special instructions, as needed, to force
  97.      execution in the proper order.
  98.      The MC88100 processor does not reorder memory references and so
  99.      always provides sequential consistency.  However, by default, GNU
  100.      C generates the special instructions to guarantee consistency even
  101.      when you use `-m88100', so that the code may be run on an MC88110
  102.      processor.  If you intend to run your code only on the MC88100
  103.      processor, you may use `-mno-serialize-volatile'.
  104.      The extra code generated to guarantee consistency may affect the
  105.      performance of your application.  If you know that you can safely
  106.      forgo this guarantee, you may use `-mno-serialize-volatile'.
  107. `-msvr4'
  108. `-msvr3'
  109.      Turn on (`-msvr4') or off (`-msvr3') compiler extensions related
  110.      to System V release 4 (SVr4).  This controls the following:
  111.        1. Which variant of the assembler syntax to emit.
  112.        2. `-msvr4' makes the C preprocessor recognize `#pragma weak'
  113.           that is used on System V release 4.
  114.        3. `-msvr4' makes GCC issue additional declaration directives
  115.           used in SVr4.
  116.      `-msvr4' is the default for the m88k-motorola-sysv4 and
  117.      m88k-dg-dgux m88k configurations. `-msvr3' is the default for all
  118.      other m88k configurations.
  119. `-mversion-03.00'
  120.      This option is obsolete, and is ignored.
  121. `-mno-check-zero-division'
  122. `-mcheck-zero-division'
  123.      Do, or don't, generate code to guarantee that integer division by
  124.      zero will be detected.  By default, detection is guaranteed.
  125.      Some models of the MC88100 processor fail to trap upon integer
  126.      division by zero under certain conditions.  By default, when
  127.      compiling code that might be run on such a processor, GNU C
  128.      generates code that explicitly checks for zero-valued divisors and
  129.      traps with exception number 503 when one is detected.  Use of
  130.      mno-check-zero-division suppresses such checking for code
  131.      generated to run on an MC88100 processor.
  132.      GNU C assumes that the MC88110 processor correctly detects all
  133.      instances of integer division by zero.  When `-m88110' is
  134.      specified, both `-mcheck-zero-division' and
  135.      `-mno-check-zero-division' are ignored, and no explicit checks for
  136.      zero-valued divisors are generated.
  137. `-muse-div-instruction'
  138.      Use the div instruction for signed integer division on the MC88100
  139.      processor.  By default, the div instruction is not used.
  140.      On the MC88100 processor the signed integer division instruction
  141.      div) traps to the operating system on a negative operand.  The
  142.      operating system transparently completes the operation, but at a
  143.      large cost in execution time.  By default, when compiling code
  144.      that might be run on an MC88100 processor, GNU C emulates signed
  145.      integer division using the unsigned integer division instruction
  146.      divu), thereby avoiding the large penalty of a trap to the
  147.      operating system.  Such emulation has its own, smaller, execution
  148.      cost in both time and space.  To the extent that your code's
  149.      important signed integer division operations are performed on two
  150.      nonnegative operands, it may be desirable to use the div
  151.      instruction directly.
  152.      On the MC88110 processor the div instruction (also known as the
  153.      divs instruction) processes negative operands without trapping to
  154.      the operating system.  When `-m88110' is specified,
  155.      `-muse-div-instruction' is ignored, and the div instruction is used
  156.      for signed integer division.
  157.      Note that the result of dividing INT_MIN by -1 is undefined.  In
  158.      particular, the behavior of such a division with and without
  159.      `-muse-div-instruction'  may differ.
  160. `-mtrap-large-shift'
  161. `-mhandle-large-shift'
  162.      Include code to detect bit-shifts of more than 31 bits;
  163.      respectively, trap such shifts or emit code to handle them
  164.      properly.  By default GCC makes no special provision for large bit
  165.      shifts.
  166. `-mwarn-passed-structs'
  167.      Warn when a function passes a struct as an argument or result.
  168.      Structure-passing conventions have changed during the evolution of
  169.      the C language, and are often the source of portability problems.
  170.      By default, GCC issues no such warning.
  171. File: gcc.info,  Node: RS/6000 and PowerPC Options,  Next: RT Options,  Prev: M88K Options,  Up: Submodel Options
  172. IBM RS/6000 and PowerPC Options
  173. -------------------------------
  174.    These `-m' options are defined for the IBM RS/6000 and PowerPC:
  175. `-mpower'
  176. `-mno-power'
  177. `-mpower2'
  178. `-mno-power2'
  179. `-mpowerpc'
  180. `-mno-powerpc'
  181. `-mpowerpc-gpopt'
  182. `-mno-powerpc-gpopt'
  183. `-mpowerpc-gfxopt'
  184. `-mno-powerpc-gfxopt'
  185. `-mpowerpc64'
  186. `-mno-powerpc64'
  187.      GCC supports two related instruction set architectures for the
  188.      RS/6000 and PowerPC.  The "POWER" instruction set are those
  189.      instructions supported by the `rios' chip set used in the original
  190.      RS/6000 systems and the "PowerPC" instruction set is the
  191.      architecture of the Motorola MPC5xx, MPC6xx, MPC8xx
  192.      microprocessors, and the IBM 4xx microprocessors.
  193.      Neither architecture is a subset of the other.  However there is a
  194.      large common subset of instructions supported by both.  An MQ
  195.      register is included in processors supporting the POWER
  196.      architecture.
  197.      You use these options to specify which instructions are available
  198.      on the processor you are using.  The default value of these
  199.      options is determined when configuring GCC.  Specifying the
  200.      `-mcpu=CPU_TYPE' overrides the specification of these options.  We
  201.      recommend you use the `-mcpu=CPU_TYPE' option rather than the
  202.      options listed above.
  203.      The `-mpower' option allows GCC to generate instructions that are
  204.      found only in the POWER architecture and to use the MQ register.
  205.      Specifying `-mpower2' implies `-power' and also allows GCC to
  206.      generate instructions that are present in the POWER2 architecture
  207.      but not the original POWER architecture.
  208.      The `-mpowerpc' option allows GCC to generate instructions that
  209.      are found only in the 32-bit subset of the PowerPC architecture.
  210.      Specifying `-mpowerpc-gpopt' implies `-mpowerpc' and also allows
  211.      GCC to use the optional PowerPC architecture instructions in the
  212.      General Purpose group, including floating-point square root.
  213.      Specifying `-mpowerpc-gfxopt' implies `-mpowerpc' and also allows
  214.      GCC to use the optional PowerPC architecture instructions in the
  215.      Graphics group, including floating-point select.
  216.      The `-mpowerpc64' option allows GCC to generate the additional
  217.      64-bit instructions that are found in the full PowerPC64
  218.      architecture and to treat GPRs as 64-bit, doubleword quantities.
  219.      GCC defaults to `-mno-powerpc64'.
  220.      If you specify both `-mno-power' and `-mno-powerpc', GCC will use
  221.      only the instructions in the common subset of both architectures
  222.      plus some special AIX common-mode calls, and will not use the MQ
  223.      register.  Specifying both `-mpower' and `-mpowerpc' permits GCC
  224.      to use any instruction from either architecture and to allow use
  225.      of the MQ register; specify this for the Motorola MPC601.
  226. `-mnew-mnemonics'
  227. `-mold-mnemonics'
  228.      Select which mnemonics to use in the generated assembler code.
  229.      `-mnew-mnemonics' requests output that uses the assembler mnemonics
  230.      defined for the PowerPC architecture, while `-mold-mnemonics'
  231.      requests the assembler mnemonics defined for the POWER
  232.      architecture.  Instructions defined in only one architecture have
  233.      only one mnemonic; GCC uses that mnemonic irrespective of which of
  234.      these options is specified.
  235.      GCC defaults to the mnemonics appropriate for the architecture in
  236.      use.  Specifying `-mcpu=CPU_TYPE' sometimes overrides the value of
  237.      these option.  Unless you are building a cross-compiler, you
  238.      should normally not specify either `-mnew-mnemonics' or
  239.      `-mold-mnemonics', but should instead accept the default.
  240. `-mcpu=CPU_TYPE'
  241.      Set architecture type, register usage, choice of mnemonics, and
  242.      instruction scheduling parameters for machine type CPU_TYPE.
  243.      Supported values for CPU_TYPE are `rs6000', `rios1', `rios2',
  244.      `rsc', `601', `602', `603', `603e', `604', `604e', `620', `740',
  245.      `750', `power', `power2', `powerpc', `403', `505', `801', `821',
  246.      `823', and `860' and `common'.  `-mcpu=power', `-mcpu=power2', and
  247.      `-mcpu=powerpc' specify generic POWER, POWER2 and pure PowerPC
  248.      (i.e., not MPC601) architecture machine types, with an appropriate,
  249.      generic processor model assumed for scheduling purposes.
  250.      Specifying any of the following options: `-mcpu=rios1',
  251.      `-mcpu=rios2', `-mcpu=rsc', `-mcpu=power', or `-mcpu=power2'
  252.      enables the `-mpower' option and disables the `-mpowerpc' option;
  253.      `-mcpu=601' enables both the `-mpower' and `-mpowerpc' options.
  254.      All of `-mcpu=602', `-mcpu=603', `-mcpu=603e', `-mcpu=604',
  255.      `-mcpu=620', enable the `-mpowerpc' option and disable the
  256.      `-mpower' option.  Exactly similarly, all of `-mcpu=403',
  257.      `-mcpu=505', `-mcpu=821', `-mcpu=860' and `-mcpu=powerpc' enable
  258.      the `-mpowerpc' option and disable the `-mpower' option.
  259.      `-mcpu=common' disables both the `-mpower' and `-mpowerpc' options.
  260.      AIX versions 4 or greater selects `-mcpu=common' by default, so
  261.      that code will operate on all members of the RS/6000 and PowerPC
  262.      families.  In that case, GCC will use only the instructions in the
  263.      common subset of both architectures plus some special AIX
  264.      common-mode calls, and will not use the MQ register.  GCC assumes
  265.      a generic processor model for scheduling purposes.
  266.      Specifying any of the options `-mcpu=rios1', `-mcpu=rios2',
  267.      `-mcpu=rsc', `-mcpu=power', or `-mcpu=power2' also disables the
  268.      `new-mnemonics' option.  Specifying `-mcpu=601', `-mcpu=602',
  269.      `-mcpu=603', `-mcpu=603e', `-mcpu=604', `620', `403', or
  270.      `-mcpu=powerpc' also enables the `new-mnemonics' option.
  271.      Specifying `-mcpu=403', `-mcpu=821', or `-mcpu=860' also enables
  272.      the `-msoft-float' option.
  273. `-mtune=CPU_TYPE'
  274.      Set the instruction scheduling parameters for machine type
  275.      CPU_TYPE, but do not set the architecture type, register usage,
  276.      choice of mnemonics like `-mcpu='CPU_TYPE would.  The same values
  277.      for CPU_TYPE are used for `-mtune='CPU_TYPE as for
  278.      `-mcpu='CPU_TYPE.  The `-mtune='CPU_TYPE option overrides the
  279.      `-mcpu='CPU_TYPE option in terms of instruction scheduling
  280.      parameters.
  281. `-mfull-toc'
  282. `-mno-fp-in-toc'
  283. `-mno-sum-in-toc'
  284. `-mminimal-toc'
  285.      Modify generation of the TOC (Table Of Contents), which is created
  286.      for every executable file.  The `-mfull-toc' option is selected by
  287.      default.  In that case, GCC will allocate at least one TOC entry
  288.      for each unique non-automatic variable reference in your program.
  289.      GCC will also place floating-point constants in the TOC.  However,
  290.      only 16,384 entries are available in the TOC.
  291.      If you receive a linker error message that saying you have
  292.      overflowed the available TOC space, you can reduce the amount of
  293.      TOC space used with the `-mno-fp-in-toc' and `-mno-sum-in-toc'
  294.      options.  `-mno-fp-in-toc' prevents GCC from putting floating-point
  295.      constants in the TOC and `-mno-sum-in-toc' forces GCC to generate
  296.      code to calculate the sum of an address and a constant at run-time
  297.      instead of putting that sum into the TOC.  You may specify one or
  298.      both of these options.  Each causes GCC to produce very slightly
  299.      slower and larger code at the expense of conserving TOC space.
  300.      If you still run out of space in the TOC even when you specify
  301.      both of these options, specify `-mminimal-toc' instead.  This
  302.      option causes GCC to make only one TOC entry for every file.  When
  303.      you specify this option, GCC will produce code that is slower and
  304.      larger but which uses extremely little TOC space.  You may wish to
  305.      use this option only on files that contain less frequently
  306.      executed code.
  307. `-maix64'
  308. `-maix32'
  309.      Enable AIX 64-bit ABI and calling convention: 64-bit pointers,
  310.      64-bit `long' type, and the infrastructure needed to support them.
  311.      Specifying `-maix64' implies `-mpowerpc64' and `-mpowerpc', while
  312.      `-maix32' disables the 64-bit ABI and implies `-mno-powerpc64'.
  313.      GCC defaults to `-maix32'.
  314. `-mxl-call'
  315. `-mno-xl-call'
  316.      On AIX, pass floating-point arguments to prototyped functions
  317.      beyond the register save area (RSA) on the stack in addition to
  318.      argument FPRs.  The AIX calling convention was extended but not
  319.      initially documented to handle an obscure K&R C case of calling a
  320.      function that takes the address of its arguments with fewer
  321.      arguments than declared.  AIX XL compilers access floating point
  322.      arguments which do not fit in the RSA from the stack when a
  323.      subroutine is compiled without optimization.  Because always
  324.      storing floating-point arguments on the stack is inefficient and
  325.      rarely needed, this option is not enabled by default and only is
  326.      necessary when calling subroutines compiled by AIX XL compilers
  327.      without optimization.
  328. `-mthreads'
  329.      Support "AIX Threads".  Link an application written to use
  330.      "pthreads" with special libraries and startup code to enable the
  331.      application to run.
  332. `-mpe'
  333.      Support "IBM RS/6000 SP" "Parallel Environment" (PE).  Link an
  334.      application written to use message passing with special startup
  335.      code to enable the application to run.  The system must have PE
  336.      installed in the standard location (`/usr/lpp/ppe.poe/'), or the
  337.      `specs' file must be overridden with the `-specs=' option to
  338.      specify the appropriate directory location.  The Parallel
  339.      Environment does not support threads, so the `-mpe' option and the
  340.      `-mthreads' option are incompatible.
  341. `-msoft-float'
  342. `-mhard-float'
  343.      Generate code that does not use (uses) the floating-point register
  344.      set.  Software floating point emulation is provided if you use the
  345.      `-msoft-float' option, and pass the option to GCC when linking.
  346. `-mmultiple'
  347. `-mno-multiple'
  348.      Generate code that uses (does not use) the load multiple word
  349.      instructions and the store multiple word instructions.  These
  350.      instructions are generated by default on POWER systems, and not
  351.      generated on PowerPC systems.  Do not use `-mmultiple' on little
  352.      endian PowerPC systems, since those instructions do not work when
  353.      the processor is in little endian mode.  The exceptions are PPC740
  354.      and PPC750 which permit the instructions usage in little endian
  355.      mode.
  356. `-mstring'
  357. `-mno-string'
  358.      Generate code that uses (does not use) the load string instructions
  359.      and the store string word instructions to save multiple registers
  360.      and do small block moves.  These instructions are generated by
  361.      default on POWER systems, and not generated on PowerPC systems.
  362.      Do not use `-mstring' on little endian PowerPC systems, since those
  363.      instructions do not work when the processor is in little endian
  364.      mode.  The exceptions are PPC740 and PPC750 which permit the
  365.      instructions usage in little endian mode.
  366. `-mupdate'
  367. `-mno-update'
  368.      Generate code that uses (does not use) the load or store
  369.      instructions that update the base register to the address of the
  370.      calculated memory location.  These instructions are generated by
  371.      default.  If you use `-mno-update', there is a small window
  372.      between the time that the stack pointer is updated and the address
  373.      of the previous frame is stored, which means code that walks the
  374.      stack frame across interrupts or signals may get corrupted data.
  375. `-mfused-madd'
  376. `-mno-fused-madd'
  377.      Generate code that uses (does not use) the floating point multiply
  378.      and accumulate instructions.  These instructions are generated by
  379.      default if hardware floating is used.
  380. `-mno-bit-align'
  381. `-mbit-align'
  382.      On System V.4 and embedded PowerPC systems do not (do) force
  383.      structures and unions that contain bit fields to be aligned to the
  384.      base type of the bit field.
  385.      For example, by default a structure containing nothing but 8
  386.      `unsigned' bitfields of length 1 would be aligned to a 4 byte
  387.      boundary and have a size of 4 bytes.  By using `-mno-bit-align',
  388.      the structure would be aligned to a 1 byte boundary and be one
  389.      byte in size.
  390. `-mno-strict-align'
  391. `-mstrict-align'
  392.      On System V.4 and embedded PowerPC systems do not (do) assume that
  393.      unaligned memory references will be handled by the system.
  394. `-mrelocatable'
  395. `-mno-relocatable'
  396.      On embedded PowerPC systems generate code that allows (does not
  397.      allow) the program to be relocated to a different address at
  398.      runtime.  If you use `-mrelocatable' on any module, all objects
  399.      linked together must be compiled with `-mrelocatable' or
  400.      `-mrelocatable-lib'.
  401. `-mrelocatable-lib'
  402. `-mno-relocatable-lib'
  403.      On embedded PowerPC systems generate code that allows (does not
  404.      allow) the program to be relocated to a different address at
  405.      runtime.  Modules compiled with `-mrelocatable-lib' can be linked
  406.      with either modules compiled without `-mrelocatable' and
  407.      `-mrelocatable-lib' or with modules compiled with the
  408.      `-mrelocatable' options.
  409. `-mno-toc'
  410. `-mtoc'
  411.      On System V.4 and embedded PowerPC systems do not (do) assume that
  412.      register 2 contains a pointer to a global area pointing to the
  413.      addresses used in the program.
  414. `-mlittle'
  415. `-mlittle-endian'
  416.      On System V.4 and embedded PowerPC systems compile code for the
  417.      processor in little endian mode.  The `-mlittle-endian' option is
  418.      the same as `-mlittle'.
  419. `-mbig'
  420. `-mbig-endian'
  421.      On System V.4 and embedded PowerPC systems compile code for the
  422.      processor in big endian mode.  The `-mbig-endian' option is the
  423.      same as `-mbig'.
  424. `-mcall-sysv'
  425.      On System V.4 and embedded PowerPC systems compile code using
  426.      calling conventions that adheres to the March 1995 draft of the
  427.      System V Application Binary Interface, PowerPC processor
  428.      supplement.  This is the default unless you configured GCC using
  429.      `powerpc-*-eabiaix'.
  430. `-mcall-sysv-eabi'
  431.      Specify both `-mcall-sysv' and `-meabi' options.
  432. `-mcall-sysv-noeabi'
  433.      Specify both `-mcall-sysv' and `-mno-eabi' options.
  434. `-mcall-aix'
  435.      On System V.4 and embedded PowerPC systems compile code using
  436.      calling conventions that are similar to those used on AIX.  This
  437.      is the default if you configured GCC using `powerpc-*-eabiaix'.
  438. `-mcall-solaris'
  439.      On System V.4 and embedded PowerPC systems compile code for the
  440.      Solaris operating system.
  441. `-mcall-linux'
  442.      On System V.4 and embedded PowerPC systems compile code for the
  443.      Linux-based GNU system.
  444. `-mprototype'
  445. `-mno-prototype'
  446.      On System V.4 and embedded PowerPC systems assume that all calls to
  447.      variable argument functions are properly prototyped.  Otherwise,
  448.      the compiler must insert an instruction before every non
  449.      prototyped call to set or clear bit 6 of the condition code
  450.      register (CR) to indicate whether floating point values were
  451.      passed in the floating point registers in case the function takes
  452.      a variable arguments.  With `-mprototype', only calls to
  453.      prototyped variable argument functions will set or clear the bit.
  454. `-msim'
  455.      On embedded PowerPC systems, assume that the startup module is
  456.      called `sim-crt0.o' and that the standard C libraries are
  457.      `libsim.a' and `libc.a'.  This is the default for
  458.      `powerpc-*-eabisim'.  configurations.
  459. `-mmvme'
  460.      On embedded PowerPC systems, assume that the startup module is
  461.      called `crt0.o' and the standard C libraries are `libmvme.a' and
  462.      `libc.a'.
  463. `-mads'
  464.      On embedded PowerPC systems, assume that the startup module is
  465.      called `crt0.o' and the standard C libraries are `libads.a' and
  466.      `libc.a'.
  467. `-myellowknife'
  468.      On embedded PowerPC systems, assume that the startup module is
  469.      called `crt0.o' and the standard C libraries are `libyk.a' and
  470.      `libc.a'.
  471. `-memb'
  472.      On embedded PowerPC systems, set the PPC_EMB bit in the ELF flags
  473.      header to indicate that `eabi' extended relocations are used.
  474. `-meabi'
  475. `-mno-eabi'
  476.      On System V.4 and embedded PowerPC systems do (do not) adhere to
  477.      the Embedded Applications Binary Interface (eabi) which is a set of
  478.      modifications to the System V.4 specifications.  Selecting `-meabi'
  479.      means that the stack is aligned to an 8 byte boundary, a function
  480.      `__eabi' is called to from `main' to set up the eabi environment,
  481.      and the `-msdata' option can use both `r2' and `r13' to point to
  482.      two separate small data areas.  Selecting `-mno-eabi' means that
  483.      the stack is aligned to a 16 byte boundary, do not call an
  484.      initialization function from `main', and the `-msdata' option will
  485.      only use `r13' to point to a single small data area.  The `-meabi'
  486.      option is on by default if you configured GCC using one of the
  487.      `powerpc*-*-eabi*' options.
  488. `-msdata=eabi'
  489.      On System V.4 and embedded PowerPC systems, put small initialized
  490.      `const' global and static data in the `.sdata2' section, which is
  491.      pointed to by register `r2'.  Put small initialized non-`const'
  492.      global and static data in the `.sdata' section, which is pointed
  493.      to by register `r13'.  Put small uninitialized global and static
  494.      data in the `.sbss' section, which is adjacent to the `.sdata'
  495.      section.  The `-msdata=eabi' option is incompatible with the
  496.      `-mrelocatable' option.  The `-msdata=eabi' option also sets the
  497.      `-memb' option.
  498. `-msdata=sysv'
  499.      On System V.4 and embedded PowerPC systems, put small global and
  500.      static data in the `.sdata' section, which is pointed to by
  501.      register `r13'.  Put small uninitialized global and static data in
  502.      the `.sbss' section, which is adjacent to the `.sdata' section.
  503.      The `-msdata=sysv' option is incompatible with the `-mrelocatable'
  504.      option.
  505. `-msdata=default'
  506. `-msdata'
  507.      On System V.4 and embedded PowerPC systems, if `-meabi' is used,
  508.      compile code the same as `-msdata=eabi', otherwise compile code the
  509.      same as `-msdata=sysv'.
  510. `-msdata-data'
  511.      On System V.4 and embedded PowerPC systems, put small global and
  512.      static data in the `.sdata' section.  Put small uninitialized
  513.      global and static data in the `.sbss' section.  Do not use
  514.      register `r13' to address small data however.  This is the default
  515.      behavior unless other `-msdata' options are used.
  516. `-msdata=none'
  517. `-mno-sdata'
  518.      On embedded PowerPC systems, put all initialized global and static
  519.      data in the `.data' section, and all uninitialized data in the
  520.      `.bss' section.
  521. `-G NUM'
  522.      On embedded PowerPC systems, put global and static items less than
  523.      or equal to NUM bytes into the small data or bss sections instead
  524.      of the normal data or bss section.  By default, NUM is 8.  The `-G
  525.      NUM' switch is also passed to the linker.  All modules should be
  526.      compiled with the same `-G NUM' value.
  527. `-mregnames'
  528. `-mno-regnames'
  529.      On System V.4 and embedded PowerPC systems do (do not) emit
  530.      register names in the assembly language output using symbolic
  531.      forms.
  532. File: gcc.info,  Node: RT Options,  Next: MIPS Options,  Prev: RS/6000 and PowerPC Options,  Up: Submodel Options
  533. IBM RT Options
  534. --------------
  535.    These `-m' options are defined for the IBM RT PC:
  536. `-min-line-mul'
  537.      Use an in-line code sequence for integer multiplies.  This is the
  538.      default.
  539. `-mcall-lib-mul'
  540.      Call `lmul$$' for integer multiples.
  541. `-mfull-fp-blocks'
  542.      Generate full-size floating point data blocks, including the
  543.      minimum amount of scratch space recommended by IBM.  This is the
  544.      default.
  545. `-mminimum-fp-blocks'
  546.      Do not include extra scratch space in floating point data blocks.
  547.      This results in smaller code, but slower execution, since scratch
  548.      space must be allocated dynamically.
  549. `-mfp-arg-in-fpregs'
  550.      Use a calling sequence incompatible with the IBM calling
  551.      convention in which floating point arguments are passed in
  552.      floating point registers.  Note that `varargs.h' and `stdargs.h'
  553.      will not work with floating point operands if this option is
  554.      specified.
  555. `-mfp-arg-in-gregs'
  556.      Use the normal calling convention for floating point arguments.
  557.      This is the default.
  558. `-mhc-struct-return'
  559.      Return structures of more than one word in memory, rather than in a
  560.      register.  This provides compatibility with the MetaWare HighC (hc)
  561.      compiler.  Use the option `-fpcc-struct-return' for compatibility
  562.      with the Portable C Compiler (pcc).
  563. `-mnohc-struct-return'
  564.      Return some structures of more than one word in registers, when
  565.      convenient.  This is the default.  For compatibility with the
  566.      IBM-supplied compilers, use the option `-fpcc-struct-return' or the
  567.      option `-mhc-struct-return'.
  568. File: gcc.info,  Node: MIPS Options,  Next: i386 Options,  Prev: RT Options,  Up: Submodel Options
  569. MIPS Options
  570. ------------
  571.    These `-m' options are defined for the MIPS family of computers:
  572. `-mcpu=CPU TYPE'
  573.      Assume the defaults for the machine type CPU TYPE when scheduling
  574.      instructions.  The choices for CPU TYPE are `r2000', `r3000',
  575.      `r3900', `r4000', `r4100', `r4300', `r4400', `r4600', `r4650',
  576.      `r5000', `r6000', `r8000', and `orion'.  Additionally, the
  577.      `r2000', `r3000', `r4000', `r5000', and `r6000' can be abbreviated
  578.      as `r2k' (or `r2K'), `r3k', etc.  While picking a specific CPU
  579.      TYPE will schedule things appropriately for that particular chip,
  580.      the compiler will not generate any code that does not meet level 1
  581.      of the MIPS ISA (instruction set architecture) without a `-mipsX'
  582.      or `-mabi' switch being used.
  583. `-mips1'
  584.      Issue instructions from level 1 of the MIPS ISA.  This is the
  585.      default.  `r3000' is the default CPU TYPE at this ISA level.
  586. `-mips2'
  587.      Issue instructions from level 2 of the MIPS ISA (branch likely,
  588.      square root instructions).  `r6000' is the default CPU TYPE at this
  589.      ISA level.
  590. `-mips3'
  591.      Issue instructions from level 3 of the MIPS ISA (64 bit
  592.      instructions).  `r4000' is the default CPU TYPE at this ISA level.
  593. `-mips4'
  594.      Issue instructions from level 4 of the MIPS ISA (conditional move,
  595.      prefetch, enhanced FPU instructions).  `r8000' is the default CPU
  596.      TYPE at this ISA level.
  597. `-mfp32'
  598.      Assume that 32 32-bit floating point registers are available.
  599.      This is the default.
  600. `-mfp64'
  601.      Assume that 32 64-bit floating point registers are available.
  602.      This is the default when the `-mips3' option is used.
  603. `-mgp32'
  604.      Assume that 32 32-bit general purpose registers are available.
  605.      This is the default.
  606. `-mgp64'
  607.      Assume that 32 64-bit general purpose registers are available.
  608.      This is the default when the `-mips3' option is used.
  609. `-mint64'
  610.      Force int and long types to be 64 bits wide.  See `-mlong32' for an
  611.      explanation of the default, and the width of pointers.
  612. `-mlong64'
  613.      Force long types to be 64 bits wide.  See `-mlong32' for an
  614.      explanation of the default, and the width of pointers.
  615. `-mlong32'
  616.      Force long, int, and pointer types to be 32 bits wide.
  617.      If none of `-mlong32', `-mlong64', or `-mint64' are set, the size
  618.      of ints, longs, and pointers depends on the ABI and ISA choosen.
  619.      For `-mabi=32', and `-mabi=n32', ints and longs are 32 bits wide.
  620.      For `-mabi=64', ints are 32 bits, and longs are 64 bits wide.  For
  621.      `-mabi=eabi' and either `-mips1' or `-mips2', ints and longs are
  622.      32 bits wide.  For `-mabi=eabi' and higher ISAs, ints are 32 bits,
  623.      and longs are 64 bits wide.  The width of pointer types is the
  624.      smaller of the width of longs or the width of general purpose
  625.      registers (which in turn depends on the ISA).
  626. `-mabi=32'
  627. `-mabi=o64'
  628. `-mabi=n32'
  629. `-mabi=64'
  630. `-mabi=eabi'
  631.      Generate code for the indicated ABI.  The default instruction
  632.      level is `-mips1' for `32', `-mips3' for `n32', and `-mips4'
  633.      otherwise.  Conversely, with `-mips1' or `-mips2', the default ABI
  634.      is `32'; otherwise, the default ABI is `64'.
  635. `-mmips-as'
  636.      Generate code for the MIPS assembler, and invoke `mips-tfile' to
  637.      add normal debug information.  This is the default for all
  638.      platforms except for the OSF/1 reference platform, using the
  639.      OSF/rose object format.  If the either of the `-gstabs' or
  640.      `-gstabs+' switches are used, the `mips-tfile' program will
  641.      encapsulate the stabs within MIPS ECOFF.
  642. `-mgas'
  643.      Generate code for the GNU assembler.  This is the default on the
  644.      OSF/1 reference platform, using the OSF/rose object format.  Also,
  645.      this is the default if the configure option `--with-gnu-as' is
  646.      used.
  647. `-msplit-addresses'
  648. `-mno-split-addresses'
  649.      Generate code to load the high and low parts of address constants
  650.      separately.  This allows `gcc' to optimize away redundant loads of
  651.      the high order bits of addresses.  This optimization requires GNU
  652.      as and GNU ld.  This optimization is enabled by default for some
  653.      embedded targets where GNU as and GNU ld are standard.
  654. `-mrnames'
  655. `-mno-rnames'
  656.      The `-mrnames' switch says to output code using the MIPS software
  657.      names for the registers, instead of the hardware names (ie, A0
  658.      instead of $4).  The only known assembler that supports this option
  659.      is the Algorithmics assembler.
  660. `-mgpopt'
  661. `-mno-gpopt'
  662.      The `-mgpopt' switch says to write all of the data declarations
  663.      before the instructions in the text section, this allows the MIPS
  664.      assembler to generate one word memory references instead of using
  665.      two words for short global or static data items.  This is on by
  666.      default if optimization is selected.
  667. `-mstats'
  668. `-mno-stats'
  669.      For each non-inline function processed, the `-mstats' switch
  670.      causes the compiler to emit one line to the standard error file to
  671.      print statistics about the program (number of registers saved,
  672.      stack size, etc.).
  673. `-mmemcpy'
  674. `-mno-memcpy'
  675.      The `-mmemcpy' switch makes all block moves call the appropriate
  676.      string function (`memcpy' or `bcopy') instead of possibly
  677.      generating inline code.
  678. `-mmips-tfile'
  679. `-mno-mips-tfile'
  680.      The `-mno-mips-tfile' switch causes the compiler not postprocess
  681.      the object file with the `mips-tfile' program, after the MIPS
  682.      assembler has generated it to add debug support.  If `mips-tfile'
  683.      is not run, then no local variables will be available to the
  684.      debugger.  In addition, `stage2' and `stage3' objects will have
  685.      the temporary file names passed to the assembler embedded in the
  686.      object file, which means the objects will not compare the same.
  687.      The `-mno-mips-tfile' switch should only be used when there are
  688.      bugs in the `mips-tfile' program that prevents compilation.
  689. `-msoft-float'
  690.      Generate output containing library calls for floating point.
  691.      *Warning:* the requisite libraries are not part of GCC.  Normally
  692.      the facilities of the machine's usual C compiler are used, but
  693.      this can't be done directly in cross-compilation.  You must make
  694.      your own arrangements to provide suitable library functions for
  695.      cross-compilation.
  696. `-mhard-float'
  697.      Generate output containing floating point instructions.  This is
  698.      the default if you use the unmodified sources.
  699. `-mabicalls'
  700. `-mno-abicalls'
  701.      Emit (or do not emit) the pseudo operations `.abicalls',
  702.      `.cpload', and `.cprestore' that some System V.4 ports use for
  703.      position independent code.
  704. `-mlong-calls'
  705. `-mno-long-calls'
  706.      Do all calls with the `JALR' instruction, which requires loading
  707.      up a function's address into a register before the call.  You need
  708.      to use this switch, if you call outside of the current 512
  709.      megabyte segment to functions that are not through pointers.
  710. `-mhalf-pic'
  711. `-mno-half-pic'
  712.      Put pointers to extern references into the data section and load
  713.      them up, rather than put the references in the text section.
  714. `-membedded-pic'
  715. `-mno-embedded-pic'
  716.      Generate PIC code suitable for some embedded systems.  All calls
  717.      are made using PC relative address, and all data is addressed
  718.      using the $gp register.  No more than 65536 bytes of global data
  719.      may be used.  This requires GNU as and GNU ld which do most of the
  720.      work.  This currently only works on targets which use ECOFF; it
  721.      does not work with ELF.
  722. `-membedded-data'
  723. `-mno-embedded-data'
  724.      Allocate variables to the read-only data section first if
  725.      possible, then next in the small data section if possible,
  726.      otherwise in data.  This gives slightly slower code than the
  727.      default, but reduces the amount of RAM required when executing,
  728.      and thus may be preferred for some embedded systems.
  729. `-msingle-float'
  730. `-mdouble-float'
  731.      The `-msingle-float' switch tells gcc to assume that the floating
  732.      point coprocessor only supports single precision operations, as on
  733.      the `r4650' chip.  The `-mdouble-float' switch permits gcc to use
  734.      double precision operations.  This is the default.
  735. `-mmad'
  736. `-mno-mad'
  737.      Permit use of the `mad', `madu' and `mul' instructions, as on the
  738.      `r4650' chip.
  739. `-m4650'
  740.      Turns on `-msingle-float', `-mmad', and, at least for now,
  741.      `-mcpu=r4650'.
  742. `-mips16'
  743. `-mno-mips16'
  744.      Enable 16-bit instructions.
  745. `-mentry'
  746.      Use the entry and exit pseudo ops.  This option can only be used
  747.      with `-mips16'.
  748. `-EL'
  749.      Compile code for the processor in little endian mode.  The
  750.      requisite libraries are assumed to exist.
  751. `-EB'
  752.      Compile code for the processor in big endian mode.  The requisite
  753.      libraries are assumed to exist.
  754. `-G NUM'
  755.      Put global and static items less than or equal to NUM bytes into
  756.      the small data or bss sections instead of the normal data or bss
  757.      section.  This allows the assembler to emit one word memory
  758.      reference instructions based on the global pointer (GP or $28),
  759.      instead of the normal two words used.  By default, NUM is 8 when
  760.      the MIPS assembler is used, and 0 when the GNU assembler is used.
  761.      The `-G NUM' switch is also passed to the assembler and linker.
  762.      All modules should be compiled with the same `-G NUM' value.
  763. `-nocpp'
  764.      Tell the MIPS assembler to not run its preprocessor over user
  765.      assembler files (with a `.s' suffix) when assembling them.
  766.    These options are defined by the macro `TARGET_SWITCHES' in the
  767. machine description.  The default for the options is also defined by
  768. that macro, which enables you to change the defaults.
  769. File: gcc.info,  Node: i386 Options,  Next: HPPA Options,  Prev: MIPS Options,  Up: Submodel Options
  770. Intel 386 Options
  771. -----------------
  772.    These `-m' options are defined for the i386 family of computers:
  773. `-mcpu=CPU TYPE'
  774.      Assume the defaults for the machine type CPU TYPE when scheduling
  775.      instructions.  The choices for CPU TYPE are:
  776.      `i386'        `i486'        `i586'        `i686'        
  777.      `pentium'     `pentiumpro'  `k6'                        
  778.      While picking a specific CPU TYPE will schedule things
  779.      appropriately for that particular chip, the compiler will not
  780.      generate any code that does not run on the i386 without the
  781.      `-march=CPU TYPE' option being used.  `i586' is equivalent to
  782.      `pentium' and `i686' is equivalent to `pentiumpro'.  `k6' is the
  783.      AMD chip as opposed to the Intel ones.
  784. `-march=CPU TYPE'
  785.      Generate instructions for the machine type CPU TYPE.  The choices
  786.      for CPU TYPE are the same as for `-mcpu'.  Moreover, specifying
  787.      `-march=CPU TYPE' implies `-mcpu=CPU TYPE'.
  788. `-m386'
  789. `-m486'
  790. `-mpentium'
  791. `-mpentiumpro'
  792.      Synonyms for -mcpu=i386, -mcpu=i486, -mcpu=pentium, and
  793.      -mcpu=pentiumpro respectively.  These synonyms are deprecated.
  794. `-mieee-fp'
  795. `-mno-ieee-fp'
  796.      Control whether or not the compiler uses IEEE floating point
  797.      comparisons.  These handle correctly the case where the result of a
  798.      comparison is unordered.
  799. `-msoft-float'
  800.      Generate output containing library calls for floating point.
  801.      *Warning:* the requisite libraries are not part of GCC.  Normally
  802.      the facilities of the machine's usual C compiler are used, but
  803.      this can't be done directly in cross-compilation.  You must make
  804.      your own arrangements to provide suitable library functions for
  805.      cross-compilation.
  806.      On machines where a function returns floating point results in the
  807.      80387 register stack, some floating point opcodes may be emitted
  808.      even if `-msoft-float' is used.
  809. `-mno-fp-ret-in-387'
  810.      Do not use the FPU registers for return values of functions.
  811.      The usual calling convention has functions return values of types
  812.      `float' and `double' in an FPU register, even if there is no FPU.
  813.      The idea is that the operating system should emulate an FPU.
  814.      The option `-mno-fp-ret-in-387' causes such values to be returned
  815.      in ordinary CPU registers instead.
  816. `-mno-fancy-math-387'
  817.      Some 387 emulators do not support the `sin', `cos' and `sqrt'
  818.      instructions for the 387.  Specify this option to avoid generating
  819.      those instructions. This option is the default on FreeBSD.  As of
  820.      revision 2.6.1, these instructions are not generated unless you
  821.      also use the `-ffast-math' switch.
  822. `-malign-double'
  823. `-mno-align-double'
  824.      Control whether GCC aligns `double', `long double', and `long
  825.      long' variables on a two word boundary or a one word boundary.
  826.      Aligning `double' variables on a two word boundary will produce
  827.      code that runs somewhat faster on a `Pentium' at the expense of
  828.      more memory.
  829.      *Warning:* if you use the `-malign-double' switch, structures
  830.      containing the above types will be aligned differently than the
  831.      published application binary interface specifications for the 386.
  832. `-msvr3-shlib'
  833. `-mno-svr3-shlib'
  834.      Control whether GCC places uninitialized locals into `bss' or
  835.      `data'.  `-msvr3-shlib' places these locals into `bss'.  These
  836.      options are meaningful only on System V Release 3.
  837. `-mno-wide-multiply'
  838. `-mwide-multiply'
  839.      Control whether GCC uses the `mul' and `imul' that produce 64 bit
  840.      results in `eax:edx' from 32 bit operands to do `long long'
  841.      multiplies and 32-bit division by constants.
  842. `-mrtd'
  843.      Use a different function-calling convention, in which functions
  844.      that take a fixed number of arguments return with the `ret' NUM
  845.      instruction, which pops their arguments while returning.  This
  846.      saves one instruction in the caller since there is no need to pop
  847.      the arguments there.
  848.      You can specify that an individual function is called with this
  849.      calling sequence with the function attribute `stdcall'.  You can
  850.      also override the `-mrtd' option by using the function attribute
  851.      `cdecl'.  *Note Function Attributes::.
  852.      *Warning:* this calling convention is incompatible with the one
  853.      normally used on Unix, so you cannot use it if you need to call
  854.      libraries compiled with the Unix compiler.
  855.      Also, you must provide function prototypes for all functions that
  856.      take variable numbers of arguments (including `printf'); otherwise
  857.      incorrect code will be generated for calls to those functions.
  858.      In addition, seriously incorrect code will result if you call a
  859.      function with too many arguments.  (Normally, extra arguments are
  860.      harmlessly ignored.)
  861. `-mreg-alloc=REGS'
  862.      Control the default allocation order of integer registers.  The
  863.      string REGS is a series of letters specifying a register.  The
  864.      supported letters are: `a' allocate EAX; `b' allocate EBX; `c'
  865.      allocate ECX; `d' allocate EDX; `S' allocate ESI; `D' allocate
  866.      EDI; `B' allocate EBP.
  867. `-mregparm=NUM'
  868.      Control how many registers are used to pass integer arguments.  By
  869.      default, no registers are used to pass arguments, and at most 3
  870.      registers can be used.  You can control this behavior for a
  871.      specific function by using the function attribute `regparm'.
  872.      *Note Function Attributes::.
  873.      *Warning:* if you use this switch, and NUM is nonzero, then you
  874.      must build all modules with the same value, including any
  875.      libraries.  This includes the system libraries and startup modules.
  876. `-malign-loops=NUM'
  877.      Align loops to a 2 raised to a NUM byte boundary.  If
  878.      `-malign-loops' is not specified, the default is 2 unless gas 2.8
  879.      (or later) is being used in which case the default is to align the
  880.      loop on a 16 byte boundary if it is less than 8 bytes away.
  881. `-malign-jumps=NUM'
  882.      Align instructions that are only jumped to to a 2 raised to a NUM
  883.      byte boundary.  If `-malign-jumps' is not specified, the default is
  884.      2 if optimizing for a 386, and 4 if optimizing for a 486 unless
  885.      gas 2.8 (or later) is being used in which case the default is to
  886.      align the instruction on a 16 byte boundary if it is less than 8
  887.      bytes away.
  888. `-malign-functions=NUM'
  889.      Align the start of functions to a 2 raised to NUM byte boundary.
  890.      If `-malign-functions' is not specified, the default is 2 if
  891.      optimizing for a 386, and 4 if optimizing for a 486.
  892. `-mpreferred-stack-boundary=NUM'
  893.      Attempt to keep the stack boundary aligned to a 2 raised to NUM
  894.      byte boundary.  If `-mpreferred-stack-boundary' is not specified,
  895.      the default is 4 (16 bytes or 128 bits).
  896.      The stack is required to be aligned on a 4 byte boundary.  On
  897.      Pentium and PentiumPro, `double' and `long double' values should be
  898.      aligned to an 8 byte boundary (see `-malign-double') or suffer
  899.      significant run time performance penalties.  On Pentium III, the
  900.      Streaming SIMD Extention (SSE) data type `__m128' suffers similar
  901.      penalties if it is not 16 byte aligned.
  902.      To ensure proper alignment of this values on the stack, the stack
  903.      boundary must be as aligned as that required by any value stored
  904.      on the stack.  Further, every function must be generated such that
  905.      it keeps the stack aligned.  Thus calling a function compiled with
  906.      a higher preferred stack boundary from a function compiled with a
  907.      lower preferred stack boundary will most likely misalign the
  908.      stack.  It is recommended that libraries that use callbacks always
  909.      use the default setting.
  910.      This extra alignment does consume extra stack space.  Code that is
  911.      sensitive to stack space usage, such as embedded systems and
  912.      operating system kernels, may want to reduce the preferred
  913.      alignment to `-mpreferred-stack-boundary=2'.
  914.